home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / os2 / pvm34b3.zip / pvm34b3 / pvm3 / src / regex / configure.in < prev    next >
Text File  |  1997-07-22  |  439b  |  24 lines

  1. dnl Process this file with autoconf to produce a configure script.
  2. AC_INIT(regex.c)
  3.  
  4. AC_PROG_CC
  5. AC_PROG_INSTALL
  6.  
  7. dnl I'm not sure if AC_AIX and AC_DYNIX_SEQ are really necessary.  The
  8. dnl Autoconf documentation isn't specific about which BSD functions they
  9. dnl provide.
  10. AC_AIX
  11. AC_DYNIX_SEQ
  12. AC_ISC_POSIX
  13. AC_MINIX
  14.  
  15. AC_STDC_HEADERS
  16. AC_HAVE_HEADERS(string.h)
  17.  
  18. AC_ALLOCA
  19. AC_CONST
  20.  
  21. AC_PREFIX(gcc)
  22.  
  23. AC_OUTPUT(Makefile doc/Makefile test/Makefile)
  24.